home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Example AMUcheck Authorisation file for MIMEsweeper SMTP.
- ;
- POLICY allow RETURNS 0
- POLICY deny RETURNS 1
- POLICY isjunkmail RETURNS 2
- POLICY copyadministrator RETURNS 3
- POLICY allow_in RETURNS 4
- POLICY allow_out RETURNS 5
-
- ;
- ; A default rule which allows everything.
- ;
- FROM *@* TO *@* allow
-
- ;
- ; Spot messages that are entering the company.
- ;
- FROM *@* TO *@this-company.com allow_in
-
- ;
- ; Spot messages leaving the company.
- ;
- FROM *@this-company.com To *@* allow_out
-
- ;
- ; Everything from annoying company is junk mail.
- ;
- FROM *@annoying-company.com TO *@* isjunkmail
-
- ;
- ; Deny any one in the sales sub domain from receiving mail.
- ;
- FROM *@* TO *@sales.this-company.com deny
-
- ;
- ; Copy any mail sent to the header hunter at the agency to the administrator.
- ;
- FROM *@* To head.hunter@agency.com copyadministrator
-
- ;
- ; Deny Oliver Daly at this company to send mail to Fred Little at other company.
- ;
- FROM oliver.daly@this-company.com
- TO fred.little@other-company.com deny
-
- ;
- ; Deny anyone sending mail to the competition.
- ;
- FROM *@* TO *@competition1.com deny *@competition2.com deny
-
- ;
- ; Allow the managing and technical directors to communicate with competition
- ; overriding the above rule.
- ;
- FROM
- managing.director@this-company.com
- technical.director@this-company.com
- TO
- *@competition1.com allow
- *@competition2.com allow
-
- ;
- ; Finished setting the rules.
- ;
- FINISH
-